home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Mania 5
/
MacMania 5.toast
/
/
Tools&Utilities
/
Plotfoil 3.2
/
makefile.txt
< prev
next >
Wrap
Makefile
|
1994-12-07
|
471b
|
25 lines
#
# Makefile for DOS version of plotfoil
#
# This make file is appropriate for Microsoft C Version 6.00A
# and Microsoft NMAKE.
#
# Just type "nmake /f makefile.dos" to build the program.
#
# Andrew Patrick, andrew@calvin.dgbt.doc.ca
plotfoil.exe : plotfoil.obj spline.obj
link +plotfoil+spline+ui+ps_procs,plotfoil;
plotfoil.obj: plotfoil.c
cl /c plotfoil.c
spline.obj: spline.c
cl /c spline.c
ui.obj: ui.c
cl /c ui.c
ps_procs.obj: ps_procs.c
cl /c ps_procs.c